home *** CD-ROM | disk | FTP | other *** search
/ Software USA 3 #11 / Software USA Volume 3.11.iso / mac / Games / World Builder / Ray's World Builder Demo / "Animation Room" Code next >
Text File  |  1995-11-27  |  16KB  |  260 lines

  1. By Ray R. Dunakin III
  2.  
  3. This is the scene code for the scene titled “Animation Room.” The first section is the entire scene code, exactly as it is in the game. After that the code is broken down into sections, with an explanation of each section.
  4. **************************************************************
  5.  
  6.  
  7. IF{CLICK$=ELECTRODES.1}OR{CLICK$=EYE.1}OR{CLICK$=PED.BUTTON.LEFT}OR{CLICK$=PED.BUTTON.RIGHT}OR{CLICK$=HEAD.1}THEN
  8.     PRINT{.....................................}
  9. END
  10. IF{TEXT$=GET}OR{TEXT$=TAKE}THEN
  11.     PRINT{.....................................}
  12.     IF{TEXT$=ELECTRODE}THEN
  13.         PRINT{You can't remove it, it's permanantly attached to the pedestal.}
  14.     EXIT
  15.     IF{TEXT$=EYE}THEN
  16.         PRINT{It won't budge.}
  17.     EXIT
  18.     IF{TEXT$=HEAD}THEN
  19.         IF{HEAD.1=SCENE@}AND{AR.PANEL.1>SCENE@}THEN
  20.             MOVE{HEAD.1}TO{STORAGE@}
  21.             MOVE{HEAD}TO{PLAYER@}
  22.             PRINT{You now have the robot head. The head is lifeless, since it is not attached to a body.}
  23.         EXIT
  24.     END
  25. END
  26. IF{CLICK$=PED.BUTTON.LEFT}THEN
  27.     MOVE{PED.BUTTON.LEFT}TO{STORAGE@}
  28.     SOUND{BUTTON-SND.1}
  29.     MOVE{PED.BUTTON.LEFT}TO{SCENE@}
  30.     SOUND{RADIO-SND.1}
  31.     MOVE{SPARK.1}TO{SCENE@}
  32.     MOVE{SPARK.2}TO{SCENE@}
  33.     MOVE{SPARK.1}TO{STORAGE@}
  34.     MOVE{SPARK.3}TO{SCENE@}
  35.     MOVE{SPARK.2}TO{STORAGE@}
  36.     MOVE{SPARK.3}TO{STORAGE@}
  37.     MOVE{SPARK.1}TO{SCENE@}
  38.     MOVE{SPARK.2}TO{SCENE@}
  39.     MOVE{SPARK.1}TO{STORAGE@}
  40.     MOVE{SPARK.3}TO{SCENE@}
  41.     MOVE{SPARK.2}TO{STORAGE@}
  42.     MOVE{SPARK.3}TO{STORAGE@}
  43.     MOVE{SPARK.1}TO{SCENE@}
  44.     MOVE{SPARK.2}TO{SCENE@}
  45.     MOVE{SPARK.1}TO{STORAGE@}
  46.     MOVE{SPARK.3}TO{SCENE@}
  47.     MOVE{SPARK.2}TO{STORAGE@}
  48.     MOVE{SPARK.3}TO{STORAGE@}
  49.     PRINT{This is the simplest form of animation. An object is moved to the scene, then the next object is moved to the scene and the first one is returned to STORAGE.}
  50.     PRINT{In this case, there are three objects representing the spark. Each time one is moved to the scene, the previous one is removed.}
  51.     PRINT{The button on the pedestal is animated the same way, except only one object is used. When you click on it, it's briefly removed to STORAGE, then returned to the scene.}
  52.     PRINT{Here the process is repeated a few times, to increase the running time of the animation.}
  53. EXIT
  54. IF{CLICK$=PED.BUTTON.RIGHT}THEN
  55.     MOVE{PED.BUTTON.RIGHT}TO{STORAGE@}
  56.     SOUND{BUTTON-SND.1}
  57.     MOVE{PED.BUTTON.RIGHT}TO{SCENE@}
  58.     SOUND{BOING}
  59.     MOVE{EYE.1}TO{STORAGE@}
  60.     MOVE{EYE.2}TO{STORAGE@}
  61.     MOVE{EYE.3}TO{STORAGE@}
  62.     MOVE{EYE.4}TO{STORAGE@}
  63.     MOVE{EYE.5}TO{STORAGE@}
  64.     MOVE{EYE.6}TO{STORAGE@}
  65.     MOVE{EYE.7}TO{STORAGE@}
  66.     MOVE{EYE.7}TO{SCENE@}
  67.     MOVE{EYE.6}TO{SCENE@}
  68.     MOVE{EYE.5}TO{SCENE@}
  69.     MOVE{EYE.4}TO{SCENE@}
  70.     MOVE{EYE.3}TO{SCENE@}
  71.     MOVE{EYE.2}TO{SCENE@}
  72.     MOVE{EYE.1}TO{SCENE@}
  73.     PRINT{This is a smoother method of animation. All the objects are in the scene, layered one on top of the other. Part of the background is incorporated into each object, to help hide the objects beneath it.}
  74.     PRINT{When the button is pushed, the objects are moved to STORAGE one at a time, starting with the top layer.}
  75.     PRINT{When only the bottom layer is left, the animation objects are returned to the scene one by one. This returns the Spring-eye to its original position on the pedestal.}
  76. EXIT
  77. IF{CLICK$=WHEEL.1}THEN
  78.     PRINT{.....................................}
  79.     IF{AR.PANEL.1=SCENE@}THEN
  80.         MOVE{WHEEL.1}TO{STORAGE@}
  81.         SOUND{SQUEEK.1}
  82.         MOVE{WHEEL.1}TO{SCENE@}
  83.         MOVE{AR.PANEL.1}TO{STORAGE@}
  84.         MOVE{WHEEL.1}TO{STORAGE@}
  85.         SOUND{SQUEEK.1}
  86.         MOVE{WHEEL.1}TO{SCENE@}
  87.         MOVE{AR.PANEL.2}TO{STORAGE@}
  88.         MOVE{WHEEL.1}TO{STORAGE@}
  89.         SOUND{SQUEEK.1}
  90.         MOVE{WHEEL.1}TO{SCENE@}
  91.         MOVE{AR.PANEL.3}TO{STORAGE@}
  92.         PRINT{Both forms of animation are combined here. The wheel is just one object, over a background drawing, that is removed and replaced repeatedly.}
  93.         PRINT{The panel consists of three objects layered on top of each other in the scene, that are removed one by one.}
  94.     EXIT
  95.     MOVE{WHEEL.1}TO{STORAGE@}
  96.     SOUND{SQUEEK.1}
  97.     MOVE{WHEEL.1}TO{SCENE@}
  98.     MOVE{AR.PANEL.3}TO{SCENE@}
  99.     MOVE{WHEEL.1}TO{STORAGE@}
  100.     SOUND{SQUEEK.1}
  101.     MOVE{WHEEL.1}TO{SCENE@}
  102.     MOVE{AR.PANEL.2}TO{SCENE@}
  103.     MOVE{WHEEL.1}TO{STORAGE@}
  104.     SOUND{SQUEEK.1}
  105.     MOVE{WHEEL.1}TO{SCENE@}
  106.     MOVE{AR.PANEL.1}TO{SCENE@}
  107.     PRINT{Closing the panel is just a matter of returning the objects to the scene.}
  108. EXIT
  109.  
  110.  
  111. ************End of code***********************************
  112.  
  113. The main purpose of this scene was to illustrate the basic methods of creating animation effects in World Builder, so most of the code involves animation. You must realize, however, that World Builder is not capable of “arcade game” animation. The kind of animation I’m talking about here is very simple. A series of drawings, each one a different Object, is placed in the scene or removed from the scene, one by one, creating an animation effect similar to a flipbook.
  114.  
  115. The first statement in the scene code prints a line of periods when the objects in the scene are clicked:
  116.  
  117. IF{CLICK$=ELECTRODES.1}OR{CLICK$=EYE.1}OR{CLICK$=PED.BUTTON.LEFT}OR{CLICK$=PED.BUTTON.RIGHT}OR{CLICK$=HEAD.1}THEN
  118.     PRINT{.....................................}
  119. END
  120.  
  121. The next section handles the verbs “get” and “take:”
  122.  
  123. IF{TEXT$=GET}OR{TEXT$=TAKE}THEN
  124.     PRINT{.....................................}
  125.     IF{TEXT$=ELECTRODE}THEN
  126.         PRINT{You can't remove it, it's permanantly attached to the pedestal.}
  127.     EXIT
  128.     IF{TEXT$=EYE}THEN
  129.         PRINT{It won't budge.}
  130.     EXIT
  131.     IF{TEXT$=HEAD}THEN
  132.         IF{HEAD.1=SCENE@}AND{AR.PANEL.1>SCENE@}THEN
  133.             MOVE{HEAD.1}TO{STORAGE@}
  134.             MOVE{HEAD}TO{PLAYER@}
  135.             PRINT{You now have the robot head. The head is lifeless, since it is not attached to a body.}
  136.         EXIT
  137.     END
  138. END
  139.  
  140. >>>The first statement in the above section determines whether the words “get” or “take” have been entered. If so, then nested statements check for specific items the player wants to take. If the player has entered “electrode,” then the first nested statement is true, and text is printed telling the player why he can’t take the electrode. If the player has entered the word “eye” then the second nested statement is true, and the player is told that he can’t move the eye.
  141.  
  142. There is a secret panel in the room that can be opened by turning or clicking a wheel on the wall. Inisde the hidden compartment is a robotic head. So if the player enters “get” or “take” followed by the word “head,” the third nested statement is true. Another statement is nested within that one, which determines whether or not the panel is open and the head is in the compartment. AR.PANEL.1 is the object that shows the compartment closed. HEAD.1 is the immobile object that depicts the head sitting in the compartment. If HEAD.1 is in the scene, AND AR.PANEL.1 is NOT in the scene, then HEAD.1 is moved to storage and the actual “head” object moved to the player. Then some text is displayed telling the player that he has the head, and describing it. The statement closes with EXIT, and the program stops until the next time the player does something. 
  143.  
  144. However, if the object HEAD.1 is not in the scene, OR the compartment is closed, then the innermost statement is ignored. The “get head” statement simply closes with END. In this way, if the player has already retrieved the head from the compartment and is merely trying to pick it up after dropping it in the scene, the program will handle it automatically.
  145.  
  146. If the player has entered “get” or “take” and has not entered “electrode” or “eye” or “head,” then all the nested statements are ignored, and the first statement closes with END, allowing the program to continue, handling conventional “get” actions to be handled automatically.<<<
  147.  
  148.  
  149. The next section of code handles the first example of animation. When the player clicks on the button at the base of the left pedestal, a bolt of electricity passes between the two electrodes in the scene.
  150. IF{CLICK$=PED.BUTTON.LEFT}THEN
  151.     MOVE{PED.BUTTON.LEFT}TO{STORAGE@}
  152.     SOUND{BUTTON-SND.1}
  153.     MOVE{PED.BUTTON.LEFT}TO{SCENE@}
  154.     SOUND{RADIO-SND.1}
  155.     MOVE{SPARK.1}TO{SCENE@}
  156.     MOVE{SPARK.2}TO{SCENE@}
  157.     MOVE{SPARK.1}TO{STORAGE@}
  158.     MOVE{SPARK.3}TO{SCENE@}
  159.     MOVE{SPARK.2}TO{STORAGE@}
  160.     MOVE{SPARK.3}TO{STORAGE@}
  161.     MOVE{SPARK.1}TO{SCENE@}
  162.     MOVE{SPARK.2}TO{SCENE@}
  163.     MOVE{SPARK.1}TO{STORAGE@}
  164.     MOVE{SPARK.3}TO{SCENE@}
  165.     MOVE{SPARK.2}TO{STORAGE@}
  166.     MOVE{SPARK.3}TO{STORAGE@}
  167.     MOVE{SPARK.1}TO{SCENE@}
  168.     MOVE{SPARK.2}TO{SCENE@}
  169.     MOVE{SPARK.1}TO{STORAGE@}
  170.     MOVE{SPARK.3}TO{SCENE@}
  171.     MOVE{SPARK.2}TO{STORAGE@}
  172.     MOVE{SPARK.3}TO{STORAGE@}
  173.     PRINT{This is the simplest form of animation. An object is moved to the scene, then the next object is moved to the scene and the first one is returned to STORAGE.}
  174.     PRINT{In this case, there are three objects representing the spark. Each time one is moved to the scene, the previous one is removed.}
  175.     PRINT{The button on the pedestal is animated the same way, except only one object is used. When you click on it, it's briefly removed to STORAGE, then returned to the scene.}
  176.     PRINT{Here the process is repeated a few times, to increase the running time of the animation.}
  177. EXIT
  178.  
  179. >>>In the statement above, PED.BUTTON.LEFT is the name of the object that represents the button on the left pedestal. To create the illusion that the button has actually been depressed when the player clicks on it, the button object is moved to storage, a clicking sound is played, and the button is returned to the scene. The difference in the drawing of the button object, and the drawing of the depressed button that is part of the scene, makes it look as though the button has been depressed and popped back up.
  180.  
  181. Then the program continues to create the animation of the spark. There are three objects representing the spark. Each is a drawing of the spark, and each is different from the others. The objects are originally kept in storage until the button is clicked. Then the first one is moved to the scene. The second one is moved to the scene next, and the first one is returned to storage. Then SPARK.3 is moved to the scene, and SPARK.2 is returned to storage. Then SPARK.3 is returned to storage. This creates the illusion of a flickering bolt of energy.
  182.  
  183. However, doing this just once makes the animation go by pretty quickly. So the same steps have been repeated several times to increase the length of the animation. Finally some text is printed which briefly explains the process to the player.<<<
  184.  
  185. The next section (below) controls what happens when the player clicks on the button at the base of the pedestal on the right. An eyeball on a spring will be made to jump up, then settle back down on the pedestal. The way this effect is achieved is somewhat different from the first animation. All the drawings (objects) are already in the scene at the start, layered on top of each other. Each drawing includes a part that matches the background art in the scene, so that all the drawings layered below will be hidden by the drawings at the top of the layers. When the layers are removed from the scene, one object at a time, it creates an illusion of movement:
  186.  
  187. IF{CLICK$=PED.BUTTON.RIGHT}THEN
  188.     MOVE{PED.BUTTON.RIGHT}TO{STORAGE@}
  189.     SOUND{BUTTON-SND.1}
  190.     MOVE{PED.BUTTON.RIGHT}TO{SCENE@}
  191.     SOUND{BOING}
  192.     MOVE{EYE.1}TO{STORAGE@}
  193.     MOVE{EYE.2}TO{STORAGE@}
  194.     MOVE{EYE.3}TO{STORAGE@}
  195.     MOVE{EYE.4}TO{STORAGE@}
  196.     MOVE{EYE.5}TO{STORAGE@}
  197.     MOVE{EYE.6}TO{STORAGE@}
  198.     MOVE{EYE.7}TO{STORAGE@}
  199.     MOVE{EYE.7}TO{SCENE@}
  200.     MOVE{EYE.6}TO{SCENE@}
  201.     MOVE{EYE.5}TO{SCENE@}
  202.     MOVE{EYE.4}TO{SCENE@}
  203.     MOVE{EYE.3}TO{SCENE@}
  204.     MOVE{EYE.2}TO{SCENE@}
  205.     MOVE{EYE.1}TO{SCENE@}
  206.     PRINT{This is a smoother method of animation. All the objects are in the scene, layered one on top of the other. Part of the background is incorporated into each object, to help hide the objects beneath it.}
  207.     PRINT{When the button is pushed, the objects are moved to STORAGE one at a time, starting with the top layer.}
  208.     PRINT{When only the bottom layer is left, the animation objects are returned to the scene one by one. This returns the Spring-eye to its original position on the pedestal.}
  209. EXIT
  210.  
  211. >>>As before, the animation begins with the simulated motion of the button. When the player clicks the button object, it is moved to storage, a sound is played, and then the object is returned to the scene. Then the rest of the animation is performed. The drawings (objects) of the eye are moved to storage one by one, starting with the top layer. When the last object is reached, it is not moved. Instead, the objects are returned to the scene in reverse order, to simulate the effect of the eye falling back onto the pedestal. Then the text is displayed in the text window, telling the player what has occurred.<<<
  212.  
  213. In the center of the scene, above the doorway, there is a wheel mounted on the wall. When the player clicks the wheel, the the wheel appears to turn, and a secret panel in the wall appears to open. This is sort of a combination of animation effects. The wheel is a single object, positioned exactly over a similar, but rotated, drawing in the scene art. As the object is moved to storage, then returned to the scene, it creates the illusion that the wheel is turning. At the same time, the drawings (objects) of the panel are moved one by one to storage, until the last one is gone:
  214.  
  215. IF{CLICK$=WHEEL.1}THEN
  216.     PRINT{.....................................}
  217.     IF{AR.PANEL.1=SCENE@}THEN
  218.         MOVE{WHEEL.1}TO{STORAGE@}
  219.         SOUND{SQUEEK.1}
  220.         MOVE{WHEEL.1}TO{SCENE@}
  221.         MOVE{AR.PANEL.1}TO{STORAGE@}
  222.         MOVE{WHEEL.1}TO{STORAGE@}
  223.         SOUND{SQUEEK.1}
  224.         MOVE{WHEEL.1}TO{SCENE@}
  225.         MOVE{AR.PANEL.2}TO{STORAGE@}
  226.         MOVE{WHEEL.1}TO{STORAGE@}
  227.         SOUND{SQUEEK.1}
  228.         MOVE{WHEEL.1}TO{SCENE@}
  229.         MOVE{AR.PANEL.3}TO{STORAGE@}
  230.         PRINT{Both forms of animation are combined here. The wheel is just one object, over a background drawing, that is removed and replaced repeatedly.}
  231.         PRINT{The panel consists of three objects layered on top of each other in the scene, that are removed one by one.}
  232.     EXIT
  233.     MOVE{WHEEL.1}TO{STORAGE@}
  234.     SOUND{SQUEEK.1}
  235.     MOVE{WHEEL.1}TO{SCENE@}
  236.     MOVE{AR.PANEL.3}TO{SCENE@}
  237.     MOVE{WHEEL.1}TO{STORAGE@}
  238.     SOUND{SQUEEK.1}
  239.     MOVE{WHEEL.1}TO{SCENE@}
  240.     MOVE{AR.PANEL.2}TO{SCENE@}
  241.     MOVE{WHEEL.1}TO{STORAGE@}
  242.     SOUND{SQUEEK.1}
  243.     MOVE{WHEEL.1}TO{SCENE@}
  244.     MOVE{AR.PANEL.1}TO{SCENE@}
  245.     PRINT{Closing the panel is just a matter of returning the objects to the scene.}
  246. EXIT
  247.  
  248.  
  249. >>>The first IF/THEN statement determines if the wheel object has been clicked on. If it has, then a nested statement checks to see if the panel is closed. If so, then the wheel object is moved to storage, a squeeking sound is played, and the first panel object is moved to storage. Then the wheel object is returned to the scene, and the process is repeated. Each time the wheel is moved, another panel object is also moved to storage until the last one is gone. Then the text is printed, and the program stops. 
  250.  
  251. If the panel is already open, then the process is reversed. The wheel “turns” as the panel objects are returned to the scene one by one.<<<
  252.  
  253.  
  254. In this simple game, if the player tries to turn the wheel by entering “turn wheel,” then the player is told to click on it:
  255.  
  256. IF{TEXT$=TURN}AND{TEXT$=WHEEL}THEN
  257.     PRINT{.....................................}
  258.     PRINT{To turn the wheel, just click on it.}
  259. EXIT
  260.